home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / overlay / ovl301 / horse.c < prev    next >
Encoding:
Text File  |  1988-02-17  |  119 b   |  12 lines

  1. horse_noise()
  2. {
  3.     printf(" goes neigh");
  4. }
  5.  
  6. horse(int i)
  7. {
  8.     printf("\nhorse");
  9.     if(i==9)
  10.         horse_noise();
  11. }
  12.